home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Application / ScreenPartMaker.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  255 b   |  20 lines  |  [TEXT/CWIE]

  1. // ScreenPartMaker.h
  2.  
  3. #ifndef ScreenPartMaker_h
  4. #define ScreenPartMaker_h
  5.  
  6. #ifndef PointObject_h
  7. #include "PointObject.h"
  8. #endif
  9.  
  10. class ScreenPart;
  11.  
  12. class ScreenPartMaker
  13.   {
  14.     public:
  15.         virtual ScreenPart& MakeScreenPart( PointObject p );
  16.         
  17.   };
  18.  
  19. #endif
  20.